home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- IF "%1"=="C" GOTO fine
- IF "%1"=="D" GOTO fine
- IF "%1"=="E" GOTO fine
- IF "%1"=="F" GOTO fine
- IF "%1"=="G" GOTO fine
- IF "%1"=="H" GOTO fine
- IF "%1"=="I" GOTO fine
- IF "%1"=="c" GOTO fine
- IF "%1"=="d" GOTO fine
- IF "%1"=="e" GOTO fine
- IF "%1"=="f" GOTO fine
- IF "%1"=="g" GOTO fine
- IF "%1"=="h" GOTO fine
- IF "%1"=="i" GOTO fine
-
- goto error
-
- :fine
- echo Mobile Map Ver 0.5 Hard-Drive Installation
- echo.
- echo.
- echo.
- echo.
- echo Other system requirements:
- echo IBM compatible 386sx or better.
- echo Standard VGA graphics card.
- echo Mouse.
- echo 560K of free system RAM.
- echo.
- echo A new directory
- echo %1:\MOBILE
- echo will be created which will contain all of the program
- echo files.
- echo.
- echo If you wish to end the installation at any time press
- echo CNTRL C to return to DOS.
- echo.
- pause
- cls
- echo.
- echo Installing....
- md %1:\mobile
- copy *.* %1:\mobile
- %1:
- cd %1:\mobile
-
- echo Files successfully installed. To run, type at the DOS prompt
- echo mobile<RETURN>
- echo when in the directory
- echo %1:\MOBILE
- echo.
- echo.
- pause
- cls
- %1:
- mobile
- goto end
- :error
- echo This installation program requires you to enter the letter
- echo of the drive which you are installing to.
- echo Eg.
- echo INSTALL C
- echo Will read the files from the current drive and install them
- echo onto drive C:\
- echo.
- echo Please try again.
- :end
-